home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / ole2book.zip / CHAP04.ZIP / CHAP04 / DKOALA / DKOALA.RC < prev    next >
Text File  |  1993-04-13  |  1KB  |  57 lines

  1. /*
  2.  * DKOALA.RC
  3.  * Koala Object version 1.00
  4.  *
  5.  * Resource definitions for Koala object DLL.
  6.  *
  7.  * Copyright (c)1993 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Software Design Engineer
  10.  * Microsoft Systems Developer Relations
  11.  *
  12.  * Internet  :  kraigb@microsoft.com
  13.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  14.  */
  15.  
  16.  
  17. #include <windows.h>
  18. #include <ver.h>
  19.  
  20. //Default is nodebug
  21. #ifndef DEBUG
  22. #define VER_DEBUG                   0
  23. #else
  24. #define VER_DEBUG                   VS_FF_DEBUG
  25. #endif
  26.  
  27. VS_VERSION_INFO VERSIONINFO 
  28.  FILEVERSION        1,0,0,0
  29.  PRODUCTVERSION     1,0,0,0
  30.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  31.  FILEFLAGS          VER_DEBUG
  32.  FILEOS             VOS_DOS_WINDOWS16
  33.  FILETYPE           VFT_DLL
  34.  FILESUBTYPE        VFT_UNKNOWN
  35.  
  36.  BEGIN
  37.    BLOCK "StringFileInfo"
  38.     BEGIN
  39.      BLOCK "040904E4"
  40.       BEGIN
  41.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  42.        VALUE "FileDescription", "Koala Object 1.0", "\0"
  43.        VALUE "FileVersion",     "1.00\0", "\0"
  44.        VALUE "InternalName",    "DKOALA.DLL", "\0"
  45.        VALUE "LegalCopyright",  "Copyright \251 1993 Microsoft Corp.", "\0"
  46.        VALUE "OriginalFilename","DKOALA.DLL", "\0"
  47.        VALUE "ProductName",     "Koala Object 1.0", "\0"
  48.        VALUE "ProductVersion",  "1.00\0"
  49.       END
  50.    END
  51.  
  52.    BLOCK "VarFileInfo"
  53.     BEGIN 
  54.      VALUE "Translation", 0x0409, 0x04E4
  55.     END 
  56.  END
  57.